From 407865ffc91a5fc1f6fcf7f6ecf5d80fa367a208 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Thu, 10 Jun 1993 10:28:58 +0000 Subject: [PATCH] * syntax.c (scan_lists, Fforward_comment): Call scan_sexps_forward with the proper number of arguments. --- src/syntax.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/syntax.c b/src/syntax.c index db60b8f09f5..4386ea2db0c 100644 --- a/src/syntax.c +++ b/src/syntax.c @@ -804,7 +804,7 @@ between them, return t; otherwise return nil.") last passed a comment starter. */ struct lisp_parse_state state; scan_sexps_forward (&state, find_defun_start (comment_end), - comment_end - 1, -10000, 0, Qnil); + comment_end - 1, -10000, 0, Qnil, 1); if (state.incomment) from = state.comstart; else @@ -1191,7 +1191,7 @@ scan_lists (from, count, depth, sexpflag) last passed a comment starter. */ struct lisp_parse_state state; scan_sexps_forward (&state, find_defun_start (comment_end), - comment_end - 1, -10000, 0, Qnil); + comment_end - 1, -10000, 0, Qnil, 1); if (state.incomment) from = state.comstart; else -- 2.30.2